Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@babel/helper-create-class-features-plugin
Advanced tools
Compile class public and private fields, private methods and decorators to ES6
The @babel/helper-create-class-features-plugin is a helper package used internally by Babel plugins to handle the transformation of class features. It is not intended to be used directly by end users, but rather as a utility for plugin authors to create transformations for class properties, private methods, and other class-related syntax in a consistent way.
Class Properties
This feature allows the transformation of class properties so that they can be compiled into a format that is compatible with environments that do not support the latest ECMAScript standards. The code sample shows how a class property is transformed into a constructor assignment with a helper function.
"use strict";
function _defineProperty(obj, key, value) {
if (key in obj) {
Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true });
} else {
obj[key] = value;
}
return obj;
}
class Example {
constructor() {
_defineProperty(this, "state", {});
}
}
Private Methods
This feature enables the transformation of private methods in a class. The code sample illustrates how a private method is transformed using WeakSets and helper functions to ensure that the method remains private and is not accessible outside the class.
"use strict";
function _classPrivateMethodInitSpec(obj, privateSet) {
// ...implementation details
}
function _classPrivateMethodGet(receiver, privateSet, fn) {
// ...implementation details
}
class Example {
constructor() {
_classPrivateMethodInitSpec(this, _privateMethod);
}
}
var _privateMethod = new WeakSet();
This package is a Babel plugin that transforms static class properties as well as properties declared with the property initializer syntax. It is similar to @babel/helper-create-class-features-plugin in that it handles class properties, but it is a full plugin that can be added to a Babel configuration, whereas the helper package is used internally by such plugins.
Similar to @babel/helper-create-class-features-plugin, this Babel plugin transforms private methods and accessors in classes. It provides the functionality to use private syntax in class bodies and is intended for direct use in Babel configurations, unlike the helper package which is used under the hood by this and other plugins.
Compile class public and private fields, private methods and decorators to ES6
See our website @babel/helper-create-class-features-plugin for more information.
Using npm:
npm install --save @babel/helper-create-class-features-plugin
or using yarn:
yarn add @babel/helper-create-class-features-plugin
v7.25.9 (2024-10-22)
babel-parser
, babel-template
, babel-types
syntacticPlaceholders
mode (@liuxingbaoyu)babel-helper-compilation-targets
, babel-preset-env
ClassAccessorProperty
to prevent the no-undef
rule (@victorenator)babel-parser
, babel-types
VISITOR_KEYS
etc. faster to access (@liuxingbaoyu)FAQs
Compile class public and private fields, private methods and decorators to ES6
The npm package @babel/helper-create-class-features-plugin receives a total of 24,799,691 weekly downloads. As such, @babel/helper-create-class-features-plugin popularity was classified as popular.
We found that @babel/helper-create-class-features-plugin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.